home *** CD-ROM | disk | FTP | other *** search
/ 3D Games (Spidla) / 3dhry2.iso / InterBingo 1.0 / InterBingoSetup.exe / InstallResource.swf / scripts / DefineSprite_94 / frame_1 / DoAction_2.as next >
Encoding:
Text File  |  2002-07-25  |  261 b   |  18 lines

  1. function SetLabel(lbl)
  2. {
  3.    this.Label = lbl;
  4. }
  5. function SetState(active)
  6. {
  7.    if(active)
  8.    {
  9.       trace(this._name + " - Active");
  10.       gotoAndStop(5);
  11.    }
  12.    else
  13.    {
  14.       trace(this._name + " - Disabled");
  15.       gotoAndStop(1);
  16.    }
  17. }
  18.